How to filter 1000 of student name in PHP in ascending order.
How to filter 1000 of student name in PHP in ascending order.
Writing is my profession! I have written hundreds of article for many organizations and looking forward to work with growing organization. I am compatible to produce content in many categories including International politics, Healthcare, Education, Lifestyle, etc.. I understand the value of your time that you have invested to read my bio. #thanks
Siddhi Malviya
28-Oct-2022SELECT *FROM student ORDER BY student_name ASC LIMIT 1000;
In order by clause sorts ascending order by default or we can use ASC for ascending order and DESC for descending order..